home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / console_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  924b  |  45 lines

  1. #ifndef  CLIB_CONSOLE_PROTOS_H
  2. #define  CLIB_CONSOLE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: console_protos.h 36.6 (7.11.90)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #ifndef  DEVICES_INPUTEVENT_H
  18. #include <devices/inputevent.h>
  19. #endif
  20. #ifndef  DEVICES_KEYMAP_H
  21. #include <devices/keymap.h>
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. struct InputEvent *CDInputHandler( struct InputEvent *events,
  29.     struct Library *consoleDevice );
  30. LONG RawKeyConvert( struct InputEvent *events, STRPTR buffer, long length,
  31.     struct KeyMap *keyMap );
  32. /*--- functions in V36 or higher (Release 2.0) ---*/
  33.  
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37.  
  38. #ifdef STORMPRAGMAS
  39. #ifndef _INCLUDE_PRAGMA_CONSOLE_LIB_H
  40. #include <pragma/console_lib.h>
  41. #endif
  42. #endif
  43.  
  44. #endif     /* CLIB_CONSOLE_PROTOS_H */
  45.